home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / JAPAX.E4 < prev    next >
Text File  |  1996-04-01  |  3KB  |  99 lines

  1. name Japax EDM 4 Axis
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. X ->3.>4
  9. Y ->3.>4
  10. I ->3.>4
  11. J ->3.>4
  12. K ->3.>4
  13. L ->3.>4
  14. U ->3.>5 IncFrom X
  15. V ->3.>5 IncFrom Y
  16. A ->3.>4
  17. Q ->3.>4
  18. R ->3.>4
  19. P >40
  20. F >1.3
  21. H >2
  22. D >2
  23. T >2
  24. M >2
  25. S >4
  26.  
  27. ModalLetters X Y Z F R                # List of letters that are modal    
  28.  
  29. ModalGs                               # List of g codes that are modal    
  30.  
  31. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  32. First#? N                             # Y or N  'Output 1st sequence no.  
  33. Last#? N                              # Y or N  'Output last sequence no. 
  34.  
  35. HCode X U                             # X or X U  'Horizontal char.       
  36. VCode Y V                             # Y or Y V  'Vertical char.         
  37. FeedCode F                            # Feed rate char.                   
  38.  
  39. Comment ( )                           # Begin End comment char.           
  40.  
  41. Coolant 8 9 7                         # On, Off & Mist m codes            
  42. DComp 41 42 40                        # Left, Right & Cancel m codes      
  43. LComp 43 49                           # On & Off codes                    
  44.  
  45. Feed G1                             # Linear move                       
  46. Rapid G0                            # Rapid positioning word            
  47. Cw G2                               # Circular move clockwise           
  48. Ccw G3                              # Circular move counter clockwise   
  49.  
  50. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  51.  
  52. Work G                                # Work offset register              
  53.  
  54. Spaces? Y                             # Y or N  'Spaces between words     
  55.  
  56. Incremental? N                        # Y or N  'Inc or abs output        
  57. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  58. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  59. CtrCode I J K L
  60.  
  61. Inch/MM 20 21                         # Inch & Metric g codes             
  62.  
  63. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  64.  
  65. MaxRad 999 .0005                      # Chordal breakdown value
  66. ArcWithSame? N                        # Support XY/UV arc records
  67. ArcWithLine? N                        # Support UV arc records
  68.  
  69. StartCode                             # Start of the program              
  70. %0
  71. G[Unitmode]
  72. G92 X0 Y0
  73. End
  74.  
  75. 1stToolChange                         # First tool change                 
  76. G0 X[H] Y[V]
  77. End
  78.  
  79. Infeed                                # Enable cutter comp                
  80. G[Side] X[H] Y[V] U[H2] V[V2] A[Lcomp] D[Dcomp]
  81. end
  82.  
  83. Outfeed                               # Disable cutter comp               
  84. G1 G40 X[H] Y[V] U[H2] V[V2]
  85. end
  86.  
  87. ToolChange                            # Secondary tool changes            
  88. G0
  89. M1
  90. M[Direct] S[Speed]
  91. G0 X[H] Y[V]
  92. End
  93.  
  94. EndCode                               # End of the program                
  95. A0 D0
  96. G40 M02
  97. %0
  98. End
  99.